home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / ParseBH.h < prev    next >
C/C++ Source or Header  |  1997-06-21  |  231b  |  20 lines

  1. #include "ParseFile.h"
  2. #include "ClassDef.h"
  3.  
  4. class ParseBH: public ParseFile {
  5.  
  6.     void IfDefBeg( void );
  7.     void IfDefEnd( void );
  8.  
  9.     short switches;
  10.  
  11. public:
  12.  
  13.     ClassDef *classdef;
  14.  
  15.     short Start( void );
  16.     short DoClass( void );
  17.  
  18.     
  19. };
  20.